home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Master Visual Basic 3
/
Master Visual Basic 3 (SAMS Publishing) (1994).ISO
/
mvprog
/
original
/
ch08
/
myphone.bas
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
BASIC Source File
|
1994-03-31
|
263 b
|
12 lines
' All variables must be declared.
Option Explicit
' Declare a user-defined type that corresponds to a
' record in the file PHONE.DAT.
Type PersonInfo
Name As String * 40
Phone As String * 40
Comments As String * 100
End Type